ImportFormDataFromCollection(KeyValuePair<IList<String>,IList<String>>[]) Method
In This Topic
Imports the document's form data from a key/value collection.
The keys are collections of strings representing fully qualified field names including all parents if they exist, from the top parent to the field itself, e.g. new string[] { "TopParent", "Parent", "MyField" }.
The values are collections of field values.
This method may be especially useful when importing form data submitted by a web page.
Syntax
'Declaration
Public Overloads Sub ImportFormDataFromCollection( _
ByVal () As System.Collections.Generic.KeyValuePair(Of IList(Of String),IList(Of String)) _
)
public void ImportFormDataFromCollection(
System.Collections.Generic.KeyValuePair<IList<string>,IList<string>>[]
)
Parameters
- fieldValues
- The collection of field names and their values.
See Also